Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | 'use strict'; |
||
11 | it('signIn should return a string with idToken', () => { |
||
12 | return firebaseAuth.signIn('[email protected]', 'testtest') |
||
13 | .then((res) => { |
||
14 | assert('string', typeof(res)); |
||
15 | }); |
||
16 | }); |
||
17 | |||
36 |